ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / OnClientFormatItem Property






In This Topic
    OnClientFormatItem Property (FlexGridBase<T>)
    In This Topic
    Occurs when an element representing a cell has been created.
    Syntax
    'Declaration
     
    
    Public Overridable Property OnClientFormatItem As System.String
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.String
     
    instance.OnClientFormatItem = value
     
    value = instance.OnClientFormatItem
    public virtual System.string OnClientFormatItem {get; set;}
    public read-write property OnClientFormatItem: System.String; virtual; 
    public function get,set OnClientFormatItem : System.String
    public: __property virtual System.string* get_OnClientFormatItem();
    public: __property virtual void set_OnClientFormatItem( 
       System.string* value
    );
    public:
    virtual property System.String^ OnClientFormatItem {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    This event can be used to format cells for display.It is similar in purpose to the itemFormatter property, but has the advantage of allowing multiple independent handlers.
    See Also